The Visual Basic example below shows the creation of a simple Milestones Professional schedule.
Public Sub Example4()
Set objMilestones = CreateObject("Milestones")
With objMilestones
For nCounter = 1 To 7
strTemp = "This is Task Row " + CStr(nCounter)
.PutCell nCounter, 1, strTemp
strTemp = CStr(nCounter + 1) + "/1/1997"
.AddSymbol nCounter, strTemp, nCounter
Next nCounter
End With
Exit Sub
End Sub
Milestones Professional 2019 Automation Methods and Properties. © Copyright 2018, KIDASA Software, Inc. All rights reserved.